home *** CD-ROM | disk | FTP | other *** search
/ PC-SIG Library 8 / PC-SIG Library CD-ROM (8th Edition) (1990-04).iso / 201_300 / disk0202 / exmem.h < prev    next >
Encoding:
C/C++ Source or Header  |  1984-01-01  |  338 b   |  14 lines

  1. /*
  2.  * exmem.h  21 Dec 83  Craig Milo Rogers at USC/ISI
  3.  *
  4.  *    Declare the types of the exmem functions.
  5.  */
  6.  
  7. typedef long p_addr;        /* A 20-bit linear physical memory address. */
  8.  
  9. p_addr getaddr();        /* Returns a physical memory address. */
  10.  
  11. u_short peek();            /* Contents of a memory location. */
  12. u_char cpeek();
  13. long lpeek();
  14.